route.ts 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. import NextAuth from "next-auth";
  2. import CredentialsProvider from "next-auth/providers/credentials";
  3. import * as R from "ramda";
  4. export const authOptions = {
  5. // Configure one or more authentication providers
  6. providers: [
  7. CredentialsProvider({
  8. // The name to display on the sign in form (e.g. 'Sign in with...')
  9. name: "Cocorobo cloud",
  10. // The credentials is used to generate a suitable form on the sign in page.
  11. // You can specify whatever fields you are expecting to be submitted.
  12. // e.g. domain, username, password, 2FA token, etc.
  13. // You can pass any HTML attribute to the <input> tag through the object.
  14. credentials: {
  15. userid: { label: 'userid', type: 'text' }
  16. // loginUsername: { label: "用户名", type: "text" },
  17. // loginPassword: { label: "密码", type: "password" },
  18. },
  19. async authorize(credentials, req) {
  20. return { userid: credentials.userid };
  21. // You need to provide your own logic here that takes the credentials
  22. // submitted and returns either a object representing a user or value
  23. // that is false/null if the credentials are invalid.
  24. // e.g. return { id: 1, name: 'J Smith', email: 'jsmith@example.com' }
  25. // You can also use the `req` object to obtain additional parameters
  26. // (i.e., the request IP address)
  27. /*
  28. const res = await fetch("https://beta.api.cocorobo.cn/api/user", {
  29. method: "POST",
  30. body: JSON.stringify(
  31. R.pick(["loginUsername", "loginPassword"], credentials)
  32. ),
  33. headers: {
  34. "Content-Type": "application/json",
  35. Origin: "https://edu.cocorobo.cn",
  36. },
  37. });
  38. if (res.status !== 200) {
  39. return null;
  40. }
  41. const resJson = await res.json();
  42. const user = resJson?.[0]?.[0];
  43. // If no error and we have user data, return it
  44. if (res.ok && user && user.active) {
  45. return { ...user, id: user.userid, name: user.username };
  46. }
  47. */
  48. },
  49. }),
  50. ],
  51. callbacks: {
  52. async session({ session, user }) {
  53. console.log(session, user);
  54. // Send properties to the client, like an access_token from a provider.
  55. session.user.id = user.userid;
  56. try {
  57. const res = await fetch(
  58. `https://pbl.cocorobo.cn/api/pbl/selectUser?userid=${user.userid}`,
  59. {
  60. method: "GET",
  61. headers: {
  62. "Content-Type": "application/json",
  63. },
  64. }
  65. );
  66. const username = (await res.json())?.[0]?.[0]?.username;
  67. session.user.name = username;
  68. }
  69. catch (e) {
  70. return null;
  71. }
  72. return session;
  73. },
  74. },
  75. };
  76. const handler = NextAuth(authOptions);
  77. export { handler as GET, handler as POST };